Skip to content
console.log 被重写覆盖以后如何恢复

想爬一下别人的数据,奈何一层套一层,好不容易解决了debugger的问题,又发现人家把控制台清楚了,再解决了,发现人家又把console重写了,终于最后一步也解决了

解决

加上这段函数解决解决console.log被覆写的问题

javascript
	(function(){

  var iframe = document.createElement('iframe')

  document.body.appendChild(iframe)

  window.console = iframe.contentWindow.console

}())

console.log('this.heightFog',this.heightFog._stage._fragmentShader)

Updated at: